home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Rechen1b.h < prev    next >
C/C++ Source or Header  |  1998-12-13  |  1KB  |  34 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Rechen1bH
  3. #define Rechen1bH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     TButton *Button1;
  14.     TButton *Button2;
  15.     TButton *Button3;
  16.     TButton *Button4;
  17.     TLabel *Label1;
  18.     TLabel *Label2;
  19.     TLabel *Label3;
  20.     void __fastcall Label3Click(TObject *Sender);
  21.     
  22.     void __fastcall Button1Click(TObject *Sender);
  23.     void __fastcall Button2Click(TObject *Sender);
  24.     void __fastcall Button3Click(TObject *Sender);
  25.     void __fastcall Button4Click(TObject *Sender);
  26. private:    // Benutzer-Deklarationen
  27. public:        // Benutzer-Deklarationen
  28.     __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.